ValueError: y_true and y_pred contain different number of classes 6, 2. Please provide the true labels explicitly through the labels argument. Classes found in y_true: [0 1 2 3 4 5]

17

pred = model.predict_proba(x_test)
eval = log_loss(y_true,pred)

Comments

Submit
0 Comments